home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / c-lang / strmc105.lha / StormC-Demo / INCLUDE / clib / cia_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  933b  |  46 lines

  1. #ifndef  CLIB_CIA_PROTOS_H
  2. #define  CLIB_CIA_PROTOS_H
  3.  
  4. /*
  5. **    $VER: cia_protos.h 1.7 (19.7.90)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  EXEC_INTERRUPTS_H
  18. #include <exec/interrupts.h>
  19. #endif
  20. #ifndef  EXEC_LIBRARIES_H
  21. #include <exec/libraries.h>
  22. #endif
  23.  
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27.  
  28. struct Interrupt *AddICRVector( struct Library *resource, long iCRBit,
  29.     struct Interrupt *interrupt );
  30. void RemICRVector( struct Library *resource, long iCRBit,
  31.     struct Interrupt *interrupt );
  32. WORD AbleICR( struct Library *resource, long mask );
  33. WORD SetICR( struct Library *resource, long mask );
  34.  
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38.  
  39. #ifdef STORMPRAGMAS
  40. #ifndef _INCLUDE_PRAGMA_CIA_LIB_H
  41. #include <pragma/cia_lib.h>
  42. #endif
  43. #endif
  44.  
  45. #endif     /* CLIB_CIA_PROTOS_H */
  46.